home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
cstdio.arc
/
SRC.ARC
/
INB.A
< prev
next >
Wrap
Text File
|
1985-01-16
|
282b
|
19 lines
; _inb.a - input byte from port.
; (C) Copyright 1985 Gregory R. Mansfield - All Rights Reserved.
; G. R. Mansfield. 85/01/16.
; Ver 1.0-5116.
cseg
public _inb_
; BYTE _inb(port)
; int port;
_inb_: mov bx,sp
mov dx,[bx+2] ; port
in al,dx
xor ah,ah
ret